home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / 8bit / cislib_a / monito.doc < prev    next >
Text File  |  1995-04-22  |  2KB  |  82 lines

  1.        ********************** 
  2.        *ATARI SYSTEM MONITOR* 
  3.        ********************** 
  4.  
  5.        written by Tom Walters 
  6.  
  7.  
  8.  
  9.    This is a 6502 monitor program 
  10.    for all Atari 8 bit computers. 
  11.  
  12.    This program is much superior to 
  13.    the program found on the Assembler/   Editor cartridge. 
  14.  
  15.    It is a good program for beginning 
  16.    machine language programmers to  
  17.    have as it is easy to use. 
  18.  
  19.  
  20.  
  21.        THE PROGRAM COMMANDS ARE: 
  22.  
  23.         General commands: 
  24.  
  25.         R = display regs. 
  26.         p = send display to printer. 
  27.         Q = exit and return to dos. 
  28.  
  29.         These commands are usually 
  30.         followed by a memory 
  31.         addresses. 
  32.  
  33.         T = trace through program 
  34.         S = single step. 
  35.         L = list 20 instructions. 
  36.         G = execute program. 
  37.  
  38.         These are used for hex 
  39.         arithmetic. 
  40.  
  41.         - = subtract. 
  42.         + = add.                      
  43.  
  44.         In addition, these commands 
  45.         are used in conjunction with 
  46.         others 
  47.         . 
  48.         < 
  49.         : 
  50.  
  51.         Memory moves are done using 
  52.         the M command. 
  53.         M = move 
  54.  
  55.         Format for memory move: 
  56.  
  57.      (destination)< (start).(end)M 
  58.  
  59.         Hex dumps are listed like this     (start).(end) 
  60.  
  61.         Memory is altered like this 
  62.      (starting point):(  ) (  ) (  ) 
  63.           the blanks are 2 diget hex 
  64.           numbers; up to 128 chars. 
  65.  
  66.    This program uses the single 
  67.    command line structure. In other 
  68.    words you can have up to 128  
  69.    command CHARACTERS on 1 line. 
  70.  
  71.    These are all legal commands: 
  72.     
  73.      600PLLLLLLLLLLLL 
  74.     
  75.      2000LR 
  76.     
  77.      600: 20 20 60 D0 13 
  78.  
  79.     I hope this program is of use 
  80.              to you. 
  81.                             tw 
  82.